home *** CD-ROM | disk | FTP | other *** search
- * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
- * The C++ Answer Book */
- * Tony Hansen */
- * All rights reserved. */
- * @(#) signal.h 1.6 1/20/87 09:40:05 */
- *ident "@(#)cfront:incl/signal.h 1.6"*/
-
- ifndef SIGNALH
- define SIGNALH
-
- include<sys/signal.h>
-
- ypedef void (*SIG_PF) (...);
-
- xtern int (*sigset (int, SIG_PF))();
- xtern int (*ssignal(int, SIG_PF))();
- xtern int (*signal (int, SIG_PF))();
-
- xtern int gsignal (int);
- xtern int kill (int, int);
-
- endif
-
-